home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / os2 / rsynth1.zip / getrev < prev    next >
Text File  |  1994-11-04  |  138b  |  9 lines

  1. #!/bin/sh 
  2. if test $# -gt 0; then
  3.  dir=$1;
  4. else
  5.  dir=.
  6. fi 
  7. grep 'Revision:' ${dir}/Revision.c | sed 's/^.*Revision: *\([0-9.]*\).*$/\1/'
  8.  
  9.